home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 8 / IOPROG_8.ISO / soft / sdkplnet / mac / plgsk401.sit / PluginSDK 4.01a / Examples / CharFlipper / Source / CFlipView.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-09  |  593 b   |  27 lines

  1. // CFlipView.h : header file
  2. //
  3.  
  4. #ifndef CFLIPVIEW_H
  5. #define CFLIPVIEW_H
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CFlipView window
  9. #include "CPluginView.h"
  10. #include "CCharFlipper.h"
  11.  
  12. class CFlipView : public CPluginView
  13. {
  14. public:
  15.     CFlipView( CCharFlipper* inController );
  16.     virtual ~CFlipView();
  17.  
  18.     // CFlipView methods
  19.     virtual void        SetChar( char inChar );
  20.     CCharFlipper*        GetFlipper();
  21.  
  22. protected:
  23.     char                mCurrentChar;
  24. };
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. #endif /*CFLIPVIEW_H*/